home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MACD 5
/
MACD 5.bin
/
internet
/
irc_i_dodatki
/
kuang
/
kuangeleven28.lha
/
Rexx
/
Pub
/
modes.AMIRX
< prev
next >
Wrap
Text File
|
1997-02-06
|
561b
|
25 lines
/* Kuang 11 Public Channel Plugin - Remote Modes
Works only in autochannels.
To install add following commands
VOICE
UNVOICE
OP
*/
options results
parse arg nick channel pxf pxt imop autochan text
if ~imop|~autochan then exit
"GETMYNICK"
mynick=result
parse var text command target args
upper command
if target='-' then target=''
select
when command='VOICE' then mod('+v' nick)
when command='UNVOICE' then mod('-v' nick)
When command='OP' then if pos('O',pxf)~=0 then mod('+o' nick)
otherwise
end
exit
mod:;'RAW MODE' channel arg(1);return 0